home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / PRGMANIA / BFED.10 / CURSOR.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-16  |  1.2 KB  |  44 lines

  1. /*********************************************
  2.     file: cursor.h
  3.     utility: header file of cursor.c
  4.     date: 14 nov 96
  5.     author: C.Moreau 
  6.     modifications:
  7.     comments: 
  8. *********************************************/
  9.  
  10. #ifndef _CURSOR_H
  11. #define _CURSOR_H
  12.  
  13. /*********************************************
  14.     includes
  15. *********************************************/
  16.  
  17. /*********************************************
  18.     defines
  19. *********************************************/
  20.     /* number of data in 1 line in window */
  21. #define NB_DATA_IN_LINE    16
  22.     /* number of char for 1 hexadecimal data */
  23. #define HEX_DATA_WSIZE    2
  24.     /* number of char for 1 ascii data */
  25. #define ASCII_DATA_WSIZE    1
  26.     /* start column of ASCII data */
  27. #define ASCII_DATA_OFFSET    48
  28.  
  29. /*********************************************
  30.     types definitions
  31. *********************************************/
  32.  
  33. /*********************************************
  34.     globals variables declarations
  35. *********************************************/
  36.             /* offset in char for data in window */
  37. extern int xoffset[];
  38.  
  39. /*********************************************
  40.     globals functions declarations
  41. *********************************************/
  42. extern void putcur(void);
  43.  
  44. #endif